.bar-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.bar {
  width: 100%;
  height: 10px;
  position: relative;
  box-shadow: 4px 3px 14px #cdc7c7;
  background-image: url('/img/wood.png');
  /*background: rgb(255,255,255);*/
  z-index: 3;
  border-top: 1px solid #d39b69;
}
.bar::before {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  height: 24px;
  transform: perspective(36px) rotateX(6deg);
  margin: 1px 12px;
  border-bottom: 0;
  background: linear-gradient(0deg, rgba(200, 146, 96, 1) 0%, rgb(0 0 0 / 15%) 120%);
  z-index: 4;
}
.rowshelf {
  height: 100%;
  width: 100%;
  max-width: 680px;
}
.item-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 8px;
}
.item {
  background: white;
  width: 120px;
  height: 160px;
  box-shadow: 4px -2px 10px #c3c3c3;
  z-index: 10;
}
.item img {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

